home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 1 of 3.iso / chapter4 / getclsin.c < prev    next >
C/C++ Source or Header  |  1996-01-06  |  5KB  |  170 lines

  1.  
  2. #include <windows.h>  
  3. #include "GetClsIn.h" 
  4.  
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName  = "MyApp";
  19. LPCTSTR lpszAppClass = "My Class";
  20. LPCTSTR lpszTitle    = "GetClassInfo()"; 
  21.  
  22. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  23.  
  24. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  25.                       LPTSTR lpCmdLine, int nCmdShow)
  26. {
  27.    MSG      msg;
  28.    HWND     hWnd; 
  29.    WNDCLASS wc;
  30.  
  31.    // Register the main application window class.
  32.    //............................................
  33.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  34.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  35.    wc.cbClsExtra    = 0;                      
  36.    wc.cbWndExtra    = 0;                      
  37.    wc.hInstance     = hInstance;              
  38.    wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
  39.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  40.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  41.    wc.lpszMenuName  = lpszAppName;              
  42.    wc.lpszClassName = lpszAppClass;              
  43.  
  44.    if ( IS_WIN95 )
  45.    {
  46.       if ( !RegisterWin95( &wc ) )
  47.          return( FALSE );
  48.    }
  49.    else if ( !RegisterClass( &wc ) )
  50.       return( FALSE );
  51.  
  52.    hInst = hInstance; 
  53.  
  54.    // Create the main application window.
  55.    //....................................
  56.    hWnd = CreateWindow( lpszAppClass, 
  57.                         lpszTitle,    
  58.                         WS_OVERLAPPEDWINDOW, 
  59.                         CW_USEDEFAULT, 0, 
  60.                         CW_USEDEFAULT, 0,  
  61.                         NULL,              
  62.                         NULL,              
  63.                         hInstance,         
  64.                         NULL               
  65.                       );
  66.  
  67.    if ( !hWnd ) 
  68.       return( FALSE );
  69.  
  70.    ShowWindow( hWnd, nCmdShow ); 
  71.    UpdateWindow( hWnd );         
  72.  
  73.    while( GetMessage( &msg, NULL, 0, 0) )   
  74.    {
  75.       TranslateMessage( &msg ); 
  76.       DispatchMessage( &msg );  
  77.    }
  78.  
  79.    return( msg.wParam ); 
  80. }
  81.  
  82.  
  83. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  84. {
  85.    WNDCLASSEX wcex;
  86.  
  87.    wcex.style         = lpwc->style;
  88.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  89.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  90.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  91.    wcex.hInstance     = lpwc->hInstance;
  92.    wcex.hIcon         = lpwc->hIcon;
  93.    wcex.hCursor       = lpwc->hCursor;
  94.    wcex.hbrBackground = lpwc->hbrBackground;
  95.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  96.    wcex.lpszClassName = lpwc->lpszClassName;
  97.  
  98.    // Added elements for Windows 95.
  99.    //...............................
  100.    wcex.cbSize = sizeof(WNDCLASSEX);
  101.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  102.                             IMAGE_ICON, 16, 16,
  103.                             LR_DEFAULTCOLOR );
  104.             
  105.    return RegisterClassEx( &wcex );
  106. }
  107.  
  108. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  109. {
  110.    switch( uMsg )
  111.    {
  112.       case WM_COMMAND :
  113.               switch( LOWORD( wParam ) )
  114.               {
  115.                  case IDM_TEST :
  116.                       {
  117.                          WNDCLASS wc;
  118.  
  119.                          // Get the class info for the main window.
  120.                          //........................................
  121.                          GetClassInfo( hInst, lpszAppClass, &wc );
  122.                          MessageBox( hWnd, wc.lpszMenuName,"Menu Name", MB_OK );
  123.                       }
  124.                       break;
  125.  
  126.                  case IDM_ABOUT :
  127.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  128.                         break;
  129.  
  130.                  case IDM_EXIT :
  131.                         DestroyWindow( hWnd );
  132.                         break;
  133.               }
  134.               break;
  135.       
  136.       case WM_DESTROY :
  137.               PostQuitMessage(0);
  138.               break;
  139.  
  140.       default :
  141.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  142.    }
  143.  
  144.    return( 0L );
  145. }
  146.  
  147.  
  148. LRESULT CALLBACK About( HWND hDlg,           
  149.                         UINT message,        
  150.                         WPARAM wParam,       
  151.                         LPARAM lParam)
  152. {
  153.    switch (message) 
  154.    {
  155.        case WM_INITDIALOG: 
  156.                return (TRUE);
  157.  
  158.        case WM_COMMAND:                              
  159.                if (   LOWORD(wParam) == IDOK         
  160.                    || LOWORD(wParam) == IDCANCEL)    
  161.                {
  162.                        EndDialog(hDlg, TRUE);        
  163.                        return (TRUE);
  164.                }
  165.                break;
  166.    }
  167.  
  168.    return (FALSE); 
  169. }
  170.